home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / Makefile.am < prev    next >
Makefile  |  2004-01-19  |  2KB  |  67 lines

  1. #SUBDIRS = swf
  2.  
  3. DevIncludesdir = $(includedir)/httrack
  4. DevIncludes_DATA = httrack-library.h \
  5.     htsglobal.h \
  6.     htsopt.h \
  7.     htswrap.h \
  8.     htssystem.h \
  9.     htsconfig.h \
  10.     ../config.h \
  11.     htsmodules.h \
  12.     htsbasenet.h \
  13.     htsbauth.h
  14.  
  15. INCLUDES = \
  16.     @DEFAULT_CFLAGS@ \
  17.     @THREADS_CFLAGS@ \
  18.     @V6_FLAG@ \
  19.     @LFS_FLAG@ \
  20.     -DPREFIX=\""$(prefix)"\" \
  21.     -DSYSCONFDIR=\""$(sysconfdir)"\" \
  22.     -DDATADIR=\""$(datadir)"\" \
  23.     -DLIBDIR=\""$(libdir)"\"
  24.  
  25. bin_PROGRAMS = httrack htsserver
  26.  
  27. httrack_LDADD = $(THREADS_LIBS) -lhttrack
  28. htsserver_LDADD = $(THREADS_LIBS) $(SOCKET_LIBS) -lhttrack
  29.  
  30. lib_LTLIBRARIES = libhttrack.la
  31.  
  32. htsserver_SOURCES = htsserver.c htsserver.h htsweb.c htsweb.h
  33.  
  34. whttrackrundir = $(bindir)
  35. whttrackrun_SCRIPTS = webhttrack
  36.  
  37. libhttrack_la_SOURCES =  htscore.c htsparse.c htsback.c htscache.c \
  38.     htscatchurl.c htsfilters.c htsftp.c htshash.c htsinthash.c \
  39.     htshelp.c htsjava.c htslib.c htscoremain.c \
  40.     htsname.c htsrobots.c htstools.c htswizard.c \
  41.     htsalias.c htsthread.c htsindex.c htsbauth.c \
  42.     htsmd5.c htszlib.c htsnostatic.c htswrap.c \
  43.     htsmodules.c \
  44.     md5.c \
  45.     minizip/ioapi.c minizip/mztools.c minizip/unzip.c minizip/zip.c \
  46.     hts-indextmpl.h htsalias.h htsback.h htsbase.h \
  47.     htsbasenet.h htsbauth.h htscache.h htscatchurl.h  \
  48.     htsconfig.h htscore.h htsparse.h htscoremain.h htsdefines.h  \
  49.     htsfilters.h htsftp.h htsglobal.h htshash.h htsinthash.h \
  50.     htshelp.h htsindex.h htsjava.h htslib.h htsmd5.h \
  51.     htsmodules.h htsname.h htsnet.h htsnostatic.h  \
  52.     htsopt.h htsrobots.h htssystem.h htsthread.h  \
  53.     htstools.h htswizard.h htswrap.h htszlib.h  \
  54.     htsstrings.h httrack-library.h \
  55.     md5.h \
  56.     minizip/crypt.h minizip/ioapi.h minizip/mztools.h minizip/unzip.h minizip/zip.h
  57.  
  58.     
  59. libhttrack_la_LIBADD = $(THREADS_LIBS) $(ZLIB_LIBS) $(DL_LIBS) $(SOCKET_LIBS)
  60. libhttrack_la_LDFLAGS = -version-info $(VERSION_INFO)
  61.  
  62. EXTRA_DIST = httrack.h webhttrack \
  63.         httrack.dsp httrack.dsw \
  64.         webhttrack.dsp webhttrack.dsw \
  65.         minizip/ChangeLogUnzip minizip/iowin32.c minizip/iowin32.h
  66.  
  67.